home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue27 / construc / INTERBOB.DPR < prev    next >
Encoding:
Text File  |  1997-09-29  |  195 b   |  13 lines

  1. program interbob;
  2. uses
  3.   Forms,
  4.   Unit1 in 'Unit1.pas' {MainForm};
  5.  
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TMainForm, MainForm);
  11.   Application.Run;
  12. end.
  13.